/*留言悬浮框 S*/
#message {
    position: fixed;
    right: 3px;
    bottom: 0;
    border-radius: 5px 5px 0 0;
    background: #fff;
    border: 1px solid #009aff;
    overflow: hidden;
    width: 250px;
}

#message h3 {
    background: #009aff;
    padding: 5px 0;
    text-indent: 10px;
    line-height: 28px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
}

#message h3 span {
    float: right;
    font-size: 10px;
    line-height: 28px;
    margin-right: 10px;
}

#message form {
    padding: 20px;
    display: none;
}

#message input {
    border: none;
    border-bottom: 1px solid #efefef;
    margin-bottom: 10px;
    height: 25px;
    width: 100%;
    color: #666;
}

#message textarea {
    color: #666;
    width: 100%;
    height: 100px;
    border: none;
    resize: none;
    font-family: 微软雅黑;
}

#message button {
    border: none;
    width: 100%;
    background: #009aff;
    height: 30px;
    color: #fff;
    font-size: 14px;
}

/*留言悬浮框 E*/
